home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / demo / wemdemo4.zip / INFO / LEMACS.15 (.txt) < prev    next >
GNU Info File  |  1994-09-21  |  33KB  |  637 lines

  1. This is Info file ../info/lemacs, produced by Makeinfo-1.55 from the
  2. input file lemacs.txi.
  3.    This file documents the GNU Emacs editor.
  4.    Copyright (C) 1985, 1986, 1988 Richard M. Stallman.  Copyright (C)
  5. 1991, 1992 Lucid, Inc.
  6.    Permission is granted to make and distribute verbatim copies of this
  7. manual provided the copyright notice and this permission notice are
  8. preserved on all copies.
  9.    Permission is granted to copy and distribute modified versions of
  10. this manual under the conditions for verbatim copying, provided also
  11. that the sections entitled "The GNU Manifesto", "Distribution" and "GNU
  12. General Public License" are included exactly as in the original, and
  13. provided that the entire resulting derived work is distributed under the
  14. terms of a permission notice identical to this one.
  15.    Permission is granted to copy and distribute translations of this
  16. manual into another language, under the above conditions for modified
  17. versions, except that the sections entitled "The GNU Manifesto",
  18. "Distribution" and "GNU General Public License" may be included in a
  19. translation approved by the author instead of in the original English.
  20. File: lemacs,  Node: Glossary,  Next: Key Index,  Prev: Intro,  Up: Top
  21. Glossary
  22. ********
  23. Abbrev
  24.      An abbrev is a text string which expands into a different text
  25.      string when present in the buffer.  For example, you might define
  26.      a short word as an abbrev for a long phrase that you want to insert
  27.      frequently.  *Note Abbrevs::.
  28. Aborting
  29.      Aborting means getting out of a recursive edit (q.v.).  You can use
  30.      the commands `C-]' and `M-x top-level' for this.  *Note Quitting::.
  31. Auto Fill mode
  32.      Auto Fill mode is a minor mode in which text you insert is
  33.      automatically broken into lines of fixed width.  *Note Filling::.
  34. Auto Saving
  35.      Auto saving means that Emacs automatically stores the contents of
  36.      an Emacs buffer in a specially-named file so the information will
  37.      not be lost if the buffer is lost due to a system error or user
  38.      error.  *Note Auto Save::.
  39. Backup File
  40.      A backup file records the contents that a file had before the
  41.      current editing session.  Emacs creates backup files automatically
  42.      to help you track down or cancel changes you later regret.  *Note
  43.      Backup::.
  44. Balance Parentheses
  45.      Emacs can balance parentheses manually or automatically.  Manual
  46.      balancing is done by the commands to move over balanced expressions
  47.      (*note Lists::.).  Automatic balancing is done by blinking the
  48.      parenthesis that matches one just inserted (*note Matching Parens:
  49.      Matching.).
  50.      To bind a key is to change its binding (q.v.).  *Note Rebinding::.
  51. Binding
  52.      A key gets its meaning in Emacs by having a binding which is a
  53.      command (q.v.), a Lisp function that is run when the key is typed.
  54.      *Note Binding: Commands.  Customization often involves rebinding a
  55.      character to a different command function.  The bindings of all
  56.      keys are recorded in the keymaps (q.v.).  *Note Keymaps::.
  57. Blank Lines
  58.      Blank lines are lines that contain only whitespace.  Emacs has
  59.      several commands for operating on the blank lines in a buffer.
  60. Buffer
  61.      The buffer is the basic editing unit; one buffer corresponds to one
  62.      piece of text being edited.  You can have several buffers, but at
  63.      any time you are editing only one, the `selected' buffer, though
  64.      several buffers can be visible when you are using multiple
  65.      windows.  *Note Buffers::.
  66. Buffer Selection History
  67.      Emacs keeps a buffer selection history which records how recently
  68.      each Emacs buffer was selected.  Emacs uses this list when
  69.      choosing a buffer to select.  *Note Buffers::.
  70.      `C' in the name of a character is an abbreviation for Control.
  71.      *Note C-: Keystrokes.
  72.      `C-M-' in the name of a character is an abbreviation for
  73.      Control-Meta.  *Note C-M-: Keystrokes.
  74. Case Conversion
  75.      Case conversion means changing text from upper case to lower case
  76.      or vice versa.  *Note Case::, for the commands for case conversion.
  77. Characters
  78.      Characters form the contents of an Emacs buffer; also, Emacs
  79.      commands are invoked by keys (q.v.), which are sequences of one or
  80.      more characters.  *Note Keystrokes::.
  81. Command
  82.      A command is a Lisp function specially defined to be able to serve
  83.      as a key binding in Emacs.  When you type a key (q.v.), Emacs
  84.      looks up its binding (q.v.) in the relevant keymaps (q.v.) to find
  85.      the command to run.  *Note Commands::.
  86. Command Name
  87.      A command name is the name of a Lisp symbol which is a command
  88.      (*note Commands::.).  You can invoke any command by its name using
  89.      `M-x' (*note M-x::.).
  90. Comments
  91.      A comment is text in a program which is intended only for the
  92.      people reading the program, and is marked specially so that it
  93.      will be ignored when the program is loaded or compiled.  Emacs
  94.      offers special commands for creating, aligning and killing
  95.      comments.  *Note Comments::.
  96. Compilation
  97.      Compilation is the process of creating an executable program from
  98.      source code.  Emacs has commands for compiling files of Emacs Lisp
  99.      code (*note Lisp Libraries::.) and programs in C and other
  100.      languages (*note Compilation::.).
  101. Complete Key
  102.      A complete key is a character or sequence of characters which,
  103.      when typed by the user, fully specifies one action to be performed
  104.      by Emacs.  For example, `X' and `Control-f' and `Control-x m' are
  105.      keys.  Keys derive their meanings from being bound (q.v.) to
  106.      commands (q.v.).  Thus, `X' is conventionally bound to a command
  107.      to insert `X' in the buffer; `C-x m' is conventionally bound to a
  108.      command to begin composing a mail message. *Note Keystrokes::.
  109. Completion
  110.      When Emacs automatically fills an abbreviation for a name into the
  111.      entire name, that process is called completion.  Completion is
  112.      done for minibuffer (q.v.) arguments when the set of possible
  113.      valid inputs is known; for example, on command names, buffer
  114.      names, and file names.  Completion occurs when you type TAB, SPC
  115.      or RET.  *Note Completion::.
  116. Continuation Line
  117.      When a line of text is longer than the width of the screen, it
  118.      takes up more than one screen line when displayed.  We say that the
  119.      text line is continued, and all screen lines used for it after the
  120.      first are called continuation lines.  *Note Continuation: Basic.
  121. Control-Character
  122.      ASCII characters with octal codes 0 through 037, and also code
  123.      0177, do not have graphic images assigned to them.  These are the
  124.      control characters.  Any control character can be typed by holding
  125.      down the CTRL key and typing some other character; some have
  126.      special keys on the keyboard.  RET, TAB, ESC, LFD and DEL are all
  127.      control characters.  *Note Keystrokes::.
  128. Copyleft
  129.      A copyleft is a notice giving the public legal permission to
  130.      redistribute a program or other work of art.  Copylefts are used
  131.      by leftists to enrich the public just as copyrights are used by
  132.      rightists to gain power over the public.
  133. Current Buffer
  134.      The current buffer in Emacs is the Emacs buffer on which most
  135.      editing commands operate.  You can select any Emacs buffer as the
  136.      current one.  *Note Buffers::.
  137. Current Line
  138.      The line point is on (*note Point::.).
  139. Current Paragraph
  140.      The paragraph that point is in.  If point is between paragraphs,
  141.      the current paragraph is the one that follows point.  *Note
  142.      Paragraphs::.
  143. Current Defun
  144.      The defun (q.v.) that point is in.  If point is between defuns, the
  145.      current defun is the one that follows point.  *Note Defuns::.
  146. Cursor
  147.      The cursor is the rectangle on the screen which indicates the
  148.      position called point (q.v.) at which insertion and deletion takes
  149.      place.  The cursor is on or under the character that follows
  150.      point.  Often people speak of `the cursor' when, strictly
  151.      speaking, they mean `point'.  *Note Cursor: Basic.
  152. Customization
  153.      Customization is making minor changes in the way Emacs works.  It
  154.      is often done by setting variables (*note Variables::.) or by
  155.      rebinding keys (*note Keymaps::.).
  156. Default Argument
  157.      The default for an argument is the value that is used if you do not
  158.      specify one.  When Emacs prompts you in the minibuffer for an
  159.      argument, the default argument is used if you just type RET.
  160.      *Note Minibuffer::.
  161. Default Directory
  162.      When you specify a file name that does not start with `/' or `~',
  163.      it is interpreted relative to the current buffer's default
  164.      directory.  *Note Default Directory: Minibuffer File.
  165. Defun
  166.      A defun is a list at the top level of parenthesis or bracket
  167.      structure in a program.  It is so named because most such lists in
  168.      Lisp programs are calls to the Lisp function `defun'.  *Note
  169.      Defuns::.
  170.      The DEL character runs the command that deletes one character of
  171.      text.  *Note DEL: Basic.
  172. Deletion
  173.      Deleting text means erasing it without saving it.  Emacs deletes
  174.      text only when it is expected not to be worth saving (all
  175.      whitespace, or only one character).  The alternative is killing
  176.      (q.v.).  *Note Deletion: Killing.
  177. Deletion of Files
  178.      Deleting a file means removing it from the file system.  *Note
  179.      Misc File Ops::.
  180. Deletion of Messages
  181.      Deleting a message means flagging it to be eliminated from your
  182.      mail file.  Until the mail file is expunged, you can undo this by
  183.      undeleting the message.  *Note Rmail Deletion::.
  184. Deletion of Screens
  185.      When working under the multi-screen X-based version of Lucid GNU
  186.      Emacs, you can delete individual screens using the Close menu item
  187.      from the File menu.
  188. Deletion of Windows
  189.      When you delete a subwindow of an Emacs screen, you eliminate it
  190.      from the screen.  Other windows expand to use up the space.  The
  191.      deleted window can never come back, but no actual text is lost.
  192.      *Note Windows::.
  193. Directory
  194.      Files in the Unix file system are grouped into file directories.
  195.      *Note Directories: ListDir.
  196. Dired
  197.      Dired is the Emacs facility that displays the contents of a file
  198.      directory and allows you to "edit the directory", performing
  199.      operations on the files in the directory.  *Note Dired::.
  200. Disabled Command
  201.      A disabled command is one that you may not run without special
  202.      confirmation.  Commands are usually disabled because they are
  203.      confusing for beginning users.  *Note Disabling::.
  204. Dribble File
  205.      A file into which Emacs writes all the characters that the user
  206.      types on the keyboard.  Dribble files are used to make a record for
  207.      debugging Emacs bugs.  Emacs does not make a dribble file unless
  208.      you tell it to.  *Note Bugs::.
  209. Echo Area
  210.      The area at the bottom of the Emacs screen which is used for
  211.      echoing the arguments to commands, for asking questions, and for
  212.      printing brief messages (including error messages).  *Note Echo
  213.      Area::.
  214. Echoing
  215.      Echoing refers to acknowledging the receipt of commands by
  216.      displaying them (in the echo area).  Emacs never echoes
  217.      single-character keys; longer keys echo only if you pause while
  218.      typing them.
  219. Error
  220.      An error occurs when an Emacs command cannot execute in the current
  221.      circumstances.  When an error occurs, execution of the command
  222.      stops (unless the command has been programmed to do otherwise) and
  223.      Emacs reports the error by printing an error message (q.v.).
  224.      Type-ahead is discarded.  Then Emacs is ready to read another
  225.      editing command.
  226. Error Messages
  227.      Error messages are single lines of output printed by Emacs when the
  228.      user asks for something impossible to do (such as, killing text
  229.      forward when point is at the end of the buffer).  They appear in
  230.      the echo area, accompanied by a beep.
  231.      ESC is a character used as a prefix for typing Meta characters on
  232.      keyboards lacking a META key.  Unlike the META key (which, like
  233.      the SHIFT key, is held down while another character is typed), the
  234.      ESC key is pressed and released, and applies to the next character
  235.      typed.
  236. Fill Prefix
  237.      The fill prefix is a string that is Emacs enters at the beginning
  238.      of each line when it performs filling.  It is not regarded as part
  239.      of the text to be filled.  *Note Filling::.
  240. Filling
  241.      Filling text means moving text from line to line so that all the
  242.      lines are approximately the same length.  *Note Filling::.
  243. Global
  244.      Global means `independent of the current environment; in effect
  245.      throughout Emacs'.  It is the opposite of local (q.v.).  Examples
  246.      of the use of `global' appear below.
  247. Global Abbrev
  248.      A global definition of an abbrev (q.v.) is effective in all major
  249.      modes that do not have local (q.v.) definitions for the same
  250.      abbrev.  *Note Abbrevs::.
  251. Global Keymap
  252.      The global keymap (q.v.) contains key bindings that are in effect
  253.      unless local key bindings in a major mode's local keymap (q.v.)
  254.      override them.*Note Keymaps::.
  255. Global Substitution
  256.      Global substitution means replacing each occurrence of one string
  257.      by another string through a large amount of text.  *Note Replace::.
  258. Global Variable
  259.      The global value of a variable (q.v.) takes effect in all buffers
  260.      that do not have their own local (q.v.) values for the variable.
  261.      *Note Variables::.
  262. Graphic Character
  263.      Graphic characters are those assigned pictorial images rather than
  264.      just names.  All the non-Meta (q.v.) characters except for the
  265.      Control (q.v.) characters are graphic characters.  These include
  266.      letters, digits, punctuation, and spaces; they do not include RET
  267.      or ESC.  In Emacs, typing a graphic character inserts that
  268.      character (in ordinary editing modes).  *Note Basic Editing: Basic.
  269. Grinding
  270.      Grinding means adjusting the indentation in a program to fit the
  271.      nesting structure.  *Note Grinding: Indentation.
  272. Hardcopy
  273.      Hardcopy means printed output.  Emacs has commands for making
  274.      printed listings of text in Emacs buffers.  *Note Hardcopy::.
  275.      You can type HELP at any time to ask what options you have, or to
  276.      ask what any command does.  HELP is really `Control-h'.  *Note
  277.      Help::.
  278. Inbox
  279.      An inbox is a file in which mail is delivered by the operating
  280.      system.  Rmail transfers mail from inboxes to mail files (q.v.) in
  281.      which the mail is then stored permanently or until explicitly
  282.      deleted.  *Note Rmail Inbox::.
  283. Indentation
  284.      Indentation means blank space at the beginning of a line.  Most
  285.      programming languages have conventions for using indentation to
  286.      illuminate the structure of the program, and Emacs has special
  287.      features to help you set up the correct indentation.  *Note
  288.      Indentation::.
  289. Insertion
  290.      Insertion means copying text into the buffer, either from the
  291.      keyboard or from some other place in Emacs.
  292. Justification
  293.      Justification means adding extra spaces to lines of text to make
  294.      them come exactly to a specified width.  *Note Justification:
  295.      Filling.
  296. Keyboard Macros
  297.      Keyboard macros are a way of defining new Emacs commands from
  298.      sequences of existing ones, with no need to write a Lisp program.
  299.      *Note Keyboard Macros::.
  300.      A key is a sequence of characters that, when input to Emacs,
  301.      specify or begin to specify a single action for Emacs to perform.
  302.      That is, the sequence is considered a single unit.  If the key is
  303.      enough to specify one action, it is a complete key (q.v.); if it
  304.      is less than enough, it is a prefix key (q.v.).  *Note
  305.      Keystrokes::.
  306. Keymap
  307.      The keymap is the data structure that records the bindings (q.v.)
  308.      of keys to the commands that they run.  For example, the keymap
  309.      binds the character `C-n' to the command function `next-line'.
  310.      *Note Keymaps::.
  311. Kill Ring
  312.      The kill ring is the place where all text you have killed recently
  313.      is saved.  You can re-insert any of the killed text still in the
  314.      ring; this is called yanking (q.v.).  *Note Yanking::.
  315. Killing
  316.      Killing means erasing text and saving it on the kill ring so it
  317.      can be yanked (q.v.) later.  Some other systems call this
  318.      "cutting".  Most Emacs commands to erase text do killing, as
  319.      opposed to deletion (q.v.).  *Note Killing::.
  320. Killing Jobs
  321.      Killing a job (such as, an invocation of Emacs) means making it
  322.      cease to exist.  Any data within it, if not saved in a file, is
  323.      lost.  *Note Exiting::.
  324.      A list is, approximately, a text string beginning with an open
  325.      parenthesis and ending with the matching close parenthesis.  In C
  326.      mode and other non-Lisp modes, groupings surrounded by other kinds
  327.      of matched delimiters appropriate to the language, such as braces,
  328.      are also considered lists.  Emacs has special commands for many
  329.      operations on lists.  *Note Lists::.
  330. Local
  331.      Local means `in effect only in a particular context'; the relevant
  332.      kind of context is a particular function execution, a particular
  333.      buffer, or a particular major mode.  Local is the opposite of
  334.      `global' (q.v.).  Specific uses of `local' in Emacs terminology
  335.      appear below.
  336. Local Abbrev
  337.      A local abbrev definition is effective only if a particular major
  338.      mode is selected.  In that major mode, it overrides any global
  339.      definition for the same abbrev.  *Note Abbrevs::.
  340. Local Keymap
  341.      A local keymap is used in a particular major mode; the key bindings
  342.      (q.v.) in the current local keymap override global bindings of the
  343.      same keys.  *Note Keymaps::.
  344. Local Variable
  345.      A local value of a variable (q.v.) applies to only one buffer.
  346.      *Note Locals::.
  347.      `M-' in the name of a character is an abbreviation for META, one
  348.      of the modifier keys that can accompany any character.  *Note
  349.      Keystrokes::.
  350.      `M-C-' in the name of a character is an abbreviation for
  351.      Control-Meta; it means the same thing as `C-M-'.  If your terminal
  352.      lacks a real META key, you type a Control-Meta character by typing
  353.      ESC and then typing the corresponding Control character.  *Note
  354.      C-M-: Keystrokes.
  355.      `M-x' is the key which is used to call an Emacs command by name.
  356.      You use it to call commands that are not bound to keys.  *Note
  357.      M-x::.
  358.      Mail means messages sent from one user to another through the
  359.      computer system, to be read at the recipient's convenience.  Emacs
  360.      has commands for composing and sending mail, and for reading and
  361.      editing the mail you have received.  *Note Sending Mail::.  *Note
  362.      Rmail::, for how to read mail.
  363. Mail File
  364.      A mail file is a file which is edited using Rmail and in which
  365.      Rmail stores mail.  *Note Rmail::.
  366. Major Mode
  367.      The major modes are a mutually exclusive set of options each of
  368.      which configures Emacs for editing a certain sort of text.
  369.      Ideally, each programming language has its own major mode.  *Note
  370.      Major Modes::.
  371.      The mark points to a position in the text.  It specifies one end
  372.      of the region (q.v.), point being the other end.  Many commands
  373.      operate on the whole region, that is, all the text from point to
  374.      the mark.  *Note Mark::.
  375. Mark Ring
  376.      The mark ring is used to hold several recent previous locations of
  377.      the mark, just in case you want to move back to them.  *Note Mark
  378.      Ring::.
  379. Message
  380.      See `mail'.
  381.      Meta is the name of a modifier bit which a command character may
  382.      have.  It is present in a character if the character is typed with
  383.      the META key held down.  Such characters are given names that start
  384.      with `Meta-'.  For example, `Meta-<' is typed by holding down META
  385.      and at the same time typing `<' (which itself is done, on most
  386.      terminals, by holding down SHIFT and typing `,').  *Note Meta:
  387.      Keystrokes.
  388. Meta Character
  389.      A Meta character is one whose character code includes the Meta bit.
  390. Minibuffer
  391.      The minibuffer is the window that Emacs displays inside the echo
  392.      area (q.v.) when it prompts you for arguments to commands.  *Note
  393.      Minibuffer::.
  394. Minor Mode
  395.      A minor mode is an optional feature of Emacs which can be switched
  396.      on or off independent of the features the major mode.  Each minor
  397.      mode has a command to turn it on or off.  *Note Minor Modes::.
  398. Mode Line
  399.      The mode line is the line at the bottom of each text window (q.v.),
  400.      which gives status information on the buffer displayed in that
  401.      window.  *Note Mode Line::.
  402. Modified Buffer
  403.      A buffer (q.v.) is modified if its text has been changed since the
  404.      last time the buffer was saved (or since it was created, if it has
  405.      never been saved).  *Note Saving::.
  406. Moving Text
  407.      Moving text means erasing it from one place and inserting it in
  408.      another.  This is done by killing (q.v.) and then yanking (q.v.).
  409.      *Note Killing::.
  410. Named Mark
  411.      A named mark is a register (q.v.) in its role of recording a
  412.      location in text so that you can move point to that location.
  413.      *Note Registers::.
  414. Narrowing
  415.      Narrowing means creating a restriction (q.v.) that limits editing
  416.      in the current buffer to only a part of the text in the buffer.
  417.      Text outside that part is inaccessible to the user until the
  418.      boundaries are widened again, but it is still there, and saving
  419.      the file saves the invisible text.  *Note Narrowing::.
  420. Newline
  421.      LFD characters in the buffer terminate lines of text and are
  422.      called newlines.  *Note Newline: Keystrokes.
  423. Numeric Argument
  424.      A numeric argument is a number, specified before a command, to
  425.      change the effect of the command.  Often the numeric argument
  426.      serves as a repeat count.  *Note Arguments::.
  427. Option
  428.      An option is a variable (q.v.) that allows you to customize Emacs
  429.      by giving it a new value.  *Note Variables::.
  430. Overwrite Mode
  431.      Overwrite mode is a minor mode.  When it is enabled, ordinary text
  432.      characters replace the existing text after point rather than
  433.      pushing it to the right.  *Note Minor Modes::.
  434.      A page is a unit of text, delimited by formfeed characters (ASCII
  435.      Control-L, code 014) coming at the beginning of a line.  Some Emacs
  436.      commands are provided for moving over and operating on pages.
  437.      *Note Pages::.
  438. Paragraphs
  439.      Paragraphs are the medium-size unit of English text.  There are
  440.      special Emacs commands for moving over and operating on paragraphs.
  441.      *Note Paragraphs::.
  442. Parsing
  443.      We say that Emacs parses words or expressions in the text being
  444.      edited.  Really, all it knows how to do is find the other end of a
  445.      word or expression.  *Note Syntax::.
  446. Point
  447.      Point is the place in the buffer at which insertion and deletion
  448.      occur.  Point is considered to be between two characters, not at
  449.      one character.  The terminal's cursor (q.v.) indicates the
  450.      location of point.  *Note Point: Basic.
  451. Prefix Key
  452.      A prefix key is a key (q.v.) whose sole function is to introduce a
  453.      set of multi-character keys.  `Control-x' is an example of a prefix
  454.      key; any two-character sequence starting with `C-x' is also a
  455.      legitimate key.  *Note Keystrokes::.
  456. Primary Mail File
  457.      Your primary mail file is the file named `RMAIL' in your home
  458.      directory, where Rmail stores all mail you receive unless you make
  459.      arrangements to do otherwise.  *Note Rmail::.
  460. Prompt
  461.      A prompt is text printed to ask the user for input.  Printing a
  462.      prompt is called prompting.  Emacs prompts always appear in the
  463.      echo area (q.v.).  One kind of prompting happens when the
  464.      minibuffer is used to read an argument (*note Minibuffer::.); the
  465.      echoing which happens when you pause in the middle of typing a
  466.      multi-character key is also a kind of prompting (*note Echo
  467.      Area::.).
  468. Quitting
  469.      Quitting means cancelling a partially typed command or a running
  470.      command, using `C-g'.  *Note Quitting::.
  471. Quoting
  472.      Quoting means depriving a character of its usual special
  473.      significance.  In Emacs this is usually done with `Control-q'.
  474.      What constitutes special significance depends on the context and
  475.      on convention.  For example, an "ordinary" character as an Emacs
  476.      command inserts itself; so in this context, a special character is
  477.      any character that does not normally
  478.      insert itself (such as DEL, for example), and quoting it makes it
  479.      insert itself as if it were not special.  Not all contexts allow
  480.      quoting.  *Note Quoting: Basic.
  481. Read-only Buffer
  482.      A read-only buffer is one whose text you are not allowed to change.
  483.      Normally Emacs makes buffers read-only when they contain text which
  484.      has a special significance to Emacs; for example, Dired buffers.
  485.      Visiting a file that is write protected also makes a read-only
  486.      buffer.  *Note Buffers::.
  487. Recursive Editing Level
  488.      A recursive editing level is a state in which part of the
  489.      execution of a command involves asking the user to edit some text.
  490.      This text may or may not be the same as the text to which the
  491.      command was applied.  The mode line indicates recursive editing
  492.      levels with square brackets (`[' and `]').  *Note Recursive Edit::.
  493. Redisplay
  494.      Redisplay is the process of correcting the image on the screen to
  495.      correspond to changes that have been made in the text being edited.
  496.      *Note Redisplay: Screen.
  497. Regexp
  498.      See `regular expression'.
  499. Region
  500.      The region is the text between point (q.v.) and the mark (q.v.).
  501.      Many commands operate on the text of the region.  *Note Region:
  502.      Mark.
  503. Registers
  504.      Registers are named slots in which text or buffer positions or
  505.      rectangles can be saved for later use.  *Note Registers::.
  506. Regular Expression
  507.      A regular expression is a pattern that can match various text
  508.      strings; for example, `l[0-9]+' matches `l' followed by one or more
  509.      digits.  *Note Regexps::.
  510. Replacement
  511.      See `global substitution'.
  512. Restriction
  513.      A buffer's restriction is the amount of text, at the beginning or
  514.      the end of the buffer, that is temporarily invisible and
  515.      inaccessible.  Giving a buffer a nonzero amount of restriction is
  516.      called narrowing (q.v.).  *Note Narrowing::.
  517.      RET is the character than runs the command to insert a newline
  518.      into the text.  It is also used to terminate most arguments read
  519.      in the minibuffer (q.v.).  *Note Return: Keystrokes.
  520. Saving
  521.      Saving a buffer means copying its text into the file that was
  522.      visited (q.v.) in that buffer.  To actually change a file you have
  523.      edited in Emacs, you have to save it.  *Note Saving::.
  524. Scrolling
  525.      Scrolling means shifting the text in the Emacs window to make a
  526.      different part ot the buffer visible.  *Note Scrolling: Display.
  527. Searching
  528.      Searching means moving point to the next occurrence of a specified
  529.      string.  *Note Search::.
  530. Selecting
  531.      Selecting a buffer means making it the current (q.v.) buffer.
  532.      *Note Selecting: Buffers.
  533. Self-documentation
  534.      Self-documentation is the feature of Emacs which can tell you what
  535.      any command does, or give you a list of all commands related to a
  536.      topic you specify.  You ask for self-documentation with the help
  537.      character, `C-h'.  *Note Help::.
  538. Sentences
  539.      Emacs has commands for moving by or killing by sentences.  *Note
  540.      Sentences::.
  541.      An sexp (short for `s-expression') is the basic syntactic unit of
  542.      Lisp in its textual form: either a list, or Lisp atom.  Many Emacs
  543.      commands operate on sexps.  The term `sexp' is generalized to
  544.      languages other than Lisp, to mean a syntactically recognizable
  545.      expression.  *Note Sexps: Lists.
  546. Simultaneous Editing
  547.      Simultaneous editing means two users modify the same file at once.
  548.      If simultaneous editing is not detected, you may lose your work.
  549.      Emacs detects all cases of simultaneous editing and warns the user
  550.      to investigate them.  *Note Simultaneous Editing: Interlocking.
  551. String
  552.      A string is a kind of Lisp data object which contains a sequence of
  553.      characters.  Many Emacs variables are intended to have strings as
  554.      values.  The Lisp syntax for a string consists of the characters in
  555.      the string with a `"' before and another `"' after. Write a `"'
  556.      that is part of the string as `\"' and a `\' that is part of the
  557.      string as `\\'.  You can include all other characters, including
  558.      newline, just by writing them inside the string. You can also
  559.      include escape sequences as in C, such as `\n' for newline or
  560.      `\241' using an octal character code.
  561. String Substitution
  562.      See `global substitution'.
  563. Syntax Table
  564.      The syntax table tells Emacs which characters are part of a word,
  565.      which characters balance each other like parentheses, etc.  *Note
  566.      Syntax::.
  567. Tag Table
  568.      A tag table is a file that serves as an index to the function
  569.      definitions in one or more other files.  *Note Tags::.
  570. Termscript File
  571.      A termscript file contains a record of all characters Emacs sent to
  572.      the terminal.  It is used for tracking down bugs in Emacs
  573.      redisplay.  Emacs does not make a termscript file unless
  574.      explicitly instructed to do so.  *Note Bugs::.
  575.      Text has two meanings (*note Text::.):
  576.         * Data consisting of a sequence of characters, as opposed to
  577.           binary numbers, images, graphics commands, executable
  578.           programs, and the like.  The contents of an Emacs buffer are
  579.           always text in this sense.
  580.         * Data consisting of written human language, as opposed to
  581.           programs, or following the stylistic conventions of human
  582.           language.
  583. Top Level
  584.      Top level is the normal state of Emacs, in which you are editing
  585.      the text of the file you have visited.  You are at top level
  586.      whenever you are not in a recursive editing level (q.v.) or the
  587.      minibuffer (q.v.), and not in the middle of a command.  You can
  588.      get back to top level by aborting (q.v.) and quitting (q.v.).
  589.      *Note Quitting::.
  590. Transposition
  591.      Transposing two units of text means putting each one into the place
  592.      formerly occupied by the other.  There are Emacs commands to
  593.      transpose two adjacent characters, words, sexps (q.v.) or lines
  594.      (*note Transpose::.).
  595. Truncation
  596.      Truncating text lines in the display means leaving out any text on
  597.      a line that does not fit within the right margin of the window
  598.      displaying it.  See also `continuation line'.  *Note Truncation:
  599.      Basic.
  600. Undoing
  601.      Undoing means making your previous editing go in reverse, bringing
  602.      back the text that existed earlier in the editing session.  *Note
  603.      Undo::.
  604. Variable
  605.      A variable is Lisp object that can store an arbitrary value.
  606.      Emacs uses some variables for internal purposes, and has others
  607.      (known as `options' (q.v.)) you can set to control the behavior of
  608.      Emacs.  The variables used in Emacs that you are likely to be
  609.      interested in are listed in the Variables Index of this manual.
  610.      *Note Variables::, for information on variables.
  611. Visiting
  612.      Visiting a file means loading its contents into a buffer (q.v.)
  613.      where they can be edited.  *Note Visiting::.
  614. Whitespace
  615.      Whitespace is any run of consecutive formatting characters (space,
  616.      tab, newline, and backspace).
  617. Widening
  618.      Widening is removing any restriction (q.v.) on the current buffer;
  619.      it is the opposite of narrowing (q.v.).  *Note Narrowing::.
  620. Window
  621.      Emacs divides the screen into one or more windows, each of which
  622.      can display the contents of one buffer (q.v.) at any time.  *Note
  623.      Screen::, for basic information on how Emacs uses the screen.
  624.      *Note Windows::, for commands to control the use of windows. Note
  625.      that if you are running Emacs under X, terminology can be
  626.      confusing: Each Emacs screen occupies a separate X window and can,
  627.      in turn, be divided into different subwindows.
  628. Word Abbrev
  629.      Synonymous with `abbrev'.
  630. Word Search
  631.      Word search is searching for a sequence of words, considering the
  632.      punctuation between them as insignificant.  *Note Word Search::.
  633. Yanking
  634.      Yanking means reinserting text previously killed.  It can be used
  635.      to undo a mistaken kill, or for copying or moving text.  Some other
  636.      systems call this "pasting".  *Note Yanking::.
  637.